home *** CD-ROM | disk | FTP | other *** search
- property meSprite, meLoc, meVisibleLoc
- global gmObject
-
- on beginSprite me
- meSprite = sprite(me.spriteNum)
- meLoc = meSprite.loc
- meVisibleLoc = meLoc + point(0, -500)
- gmObject.reportSmallFaceSprite(me.spriteNum)
- end
-
- on moveUp me
- if meSprite.member.name <> "emptyFace" then
- meSprite.loc = meVisibleLoc
- end if
- end
-
- on moveDown me
- if meSprite.member.name <> "emptyFace" then
- meSprite.loc = meLoc
- end if
- end
-